home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00092_MatchListMgmt.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.6 KB  |  213 lines

  1. --
  2. -- MatchListMgmt
  3. --
  4.  
  5. property ancestor
  6.  
  7. property spriteList  -- the appList contains general information needed to run the application.
  8. property memberList  -- property list of castLibs containing a list of available member nums.
  9.  
  10. -- the following are all constants:
  11. property appDataMember  -- the member (name) that contains the appList
  12.  
  13.  
  14. on new me
  15.   -- set constants:
  16.   set appDataMember = "ActivityPredefines"  -- currently we are using the name of the storage field.
  17.   
  18.   
  19.   set ancestor = new (script "ActivityLib")
  20.   
  21.   -- if we are a projector or protected movie then simply get the data from the appDataMember,
  22.   -- otherwise initialize empty lists.
  23.   divideLists (me, 0)
  24.   
  25.   return me
  26. end
  27.  
  28.  
  29. on destruct me
  30.   if objectP (ancestor) then destruct (ancestor)
  31.   set ancestor = 0
  32. end
  33.  
  34.  
  35. -- divide up the master list into easily accessable parts
  36. -- the master list must be formatted correctly.
  37.  
  38. on divideLists me, lst
  39.   if lst = 0 then
  40.     set spriteList = [:]
  41.     set memberList = [:]
  42.   else
  43.     set spriteList = getProp (lst, #sprites)
  44.     set memberList = getProp (lst, #members)
  45.   end if
  46. end
  47.  
  48.  
  49. -- set the starting appList manually:
  50.  
  51. on setList me, lst
  52.   makeField (me, appDataMember, lst)
  53.   divideLists (me, lst)
  54. end
  55.  
  56.  
  57.  
  58. -- runtime initialization of the game  spriteList:
  59. -- by this point spriteList will have been initialized.
  60. -- each item in the prop list will be as follows:
  61.  
  62. -- spriteNum:[#coverNum:the memberNum of sprite spr, #coverLib: the castLibNum of sprite spr, #loc:(the loc of sprite spr), #identifier:#empty, #myNum:0, #myLib:answerCast1, #matchSprite:0, #matchSprite2:0, #showflag:0 ]
  63.  
  64. on initializeRound me
  65.   divideLists (me, value (field appDataMember))
  66.   set mem1 = getPropAt (memberList, 1)
  67.   set memLst1 = getProp (memberList, mem1)  -- this is returning a pointer!!!!
  68.   set mem2 = getPropAt (memberList, 2)
  69.   set memLst2 = getProp (memberList, mem2)
  70.   --  set mem3 = getPropAt (memberList, 3)
  71.   --  set memLst3 = getProp (memberList, mem3)
  72.   
  73.   set listPool = spriteList
  74.   set spriteList = [:]
  75.   repeat while count (listPool)
  76.     
  77.     -- get a random record from the listPool:
  78.     set poolRecNum = random (count (listPool))
  79.     -- hold that record's information:
  80.     set spr = getPropAt (listPool, poolRecNum)
  81.     set lst = getProp (listPool, spr)
  82.     -- delete that record from the listPool:
  83.     deleteProp (listPool, spr)    
  84.     
  85.     -- get another random record from the listPool:
  86.     set poolRecNum2 = random (count (listPool))
  87.     -- hold that record's information:
  88.     set spr2 = getPropAt (listPool, poolRecNum2)
  89.     set lst2 = getProp (listPool, spr2)
  90.     -- delete that record from the listPool:
  91.     deleteProp (listPool, spr2)
  92.     
  93.     
  94.     -- initialize properties - using only members that have identical names:
  95.     
  96.     -- get a random member for the first list:
  97.     set num = random (count (memLst1))
  98.     -- store that member's name identifier and number in the spriteList:
  99.     set id = getPropAt (memLst1, num)
  100.     setAProp (lst, #identifier, id)
  101.     setAProp (lst, #myNum, getProp (memLst1, id))
  102.     setAProp (lst, #myLib, mem1)
  103.     
  104.     -- set props for the second sprite record:
  105.     setAProp (lst2, #identifier, id)
  106.     setAProp (lst2, #myNum, getProp (memLst2, id))
  107.     setAProp (lst2, #myLib, mem2)
  108.     
  109.     -- assign the matching sprites:
  110.     setAProp (lst, #matchSprite, spr2)
  111.     setAProp (lst2, #matchSprite, spr)
  112.     
  113.     -- delete the used member from the initializing memLst
  114.     deleteProp (memLst1, id)
  115.     
  116.     -- put our sprite records back into the master list:
  117.     setaProp (spriteList, spr, lst)
  118.     setaProp (spriteList, spr2, lst2)
  119.   end repeat
  120. end
  121.  
  122.  
  123.  
  124. -- puppet all used sprites to TRUE
  125. -- assign each sprite its personal cover member
  126.  
  127. on hideAnswerCards me
  128.   repeat with i = 1 to count (spriteList)
  129.     set spr = getPropAt (spriteList, i)
  130.     hideAnswerCard (me, spr)
  131.   end repeat
  132.   unloadCast (me)
  133.   
  134.   repeat with lst in spritelist
  135.     preLoadMember member getProp (lst, #myNum) of castLib getProp (lst, #myLib)
  136.   end repeat
  137. end
  138.  
  139.  
  140. -- hide an answer card by sprite number:
  141.  
  142. on hideAnswerCard me, spr
  143.   set lst = getProp (spriteList, spr)
  144.   
  145.   set spr = integer(spr)
  146.   puppetSprite spr, TRUE
  147.   set the memberNum of sprite spr to getProp (lst, #coverNum)
  148.   set the castLibNum of sprite spr to getProp (lst, #coverLib)
  149.   set the loc of sprite spr to getProp (lst, #loc)
  150.   -- unloadCast (me)
  151.   setAProp (lst, #showFlag, 0)
  152.   setAProp (spriteList, spr, lst)
  153. end
  154.  
  155.  
  156. -- show an answerCard by sprite number.
  157. -- return TRUE if a successful card turning.
  158.  
  159. on showAnswerCard me, spr
  160.   set lst = getAProp (spriteList, spr)
  161.   if voidP (lst) then return 0
  162.   if getProp (lst, #showFlag) then return 0
  163.   
  164.   set the memberNum of sprite spr to getProp (lst, #myNum)
  165.   set the castLibNum of sprite spr to getProp (lst, #myLib)
  166.   
  167.   -- unloadCast (me)
  168.   setAProp (lst, #showFlag, 1)
  169.   setAProp (spriteList, spr, lst)
  170.   return 1
  171. end
  172.  
  173.  
  174. -- check for a match by sprite number.
  175. -- return zero or the matching sprite number.
  176.  
  177. on checkMatch me, spr
  178.   repeat with i = 1 to count (spriteList)
  179.     set spr2 = getPropAt (spriteList, i)
  180.     set lst = getProp (spriteList, spr2)
  181.     
  182.     if spr = getAProp (lst, #matchSprite) then
  183.       if getAProp (lst, #showFlag) then
  184.         return spr2
  185.       end if
  186.     end if
  187.   end repeat
  188.   
  189.   return 0
  190. end
  191.  
  192.  
  193. on checkDone me
  194.   repeat with i = 1 to count (spriteList)
  195.     set spr = getPropAt (spriteList, i)
  196.     set lst = getProp (spriteList, spr)
  197.     if not getAProp (lst, #showFlag) then
  198.       return 0
  199.     end if
  200.   end repeat
  201.   return 1
  202. end
  203.  
  204.  
  205. on getMatchPieceList me
  206.   set lst = []
  207.   set tot = count (spriteList)
  208.   repeat with i = 1 to tot
  209.     add (lst, getPropAt (spriteList, i))
  210.   end repeat
  211.   return lst
  212. end
  213.